Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update go deps #518

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix(deps): update go deps #518

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 10, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/BurntSushi/toml v1.4.0 -> v1.5.0 age adoption passing confidence require minor
github.com/charmbracelet/bubbletea v1.2.5-0.20241205214244-9306010a31ee -> v1.3.4 age adoption passing confidence require minor
github.com/charmbracelet/huh/spinner 031e39c -> ff9123a age adoption passing confidence require digest
github.com/charmbracelet/lipgloss v1.0.0 -> v1.1.0 age adoption passing confidence require minor
github.com/go-task/task/v3 v3.41.0 -> v3.42.1 age adoption passing confidence require minor
go (source) 1.23.6 -> 1.24.1 age adoption passing confidence toolchain minor
golang.org/x/time v0.10.0 -> v0.11.0 age adoption passing confidence require minor

Release Notes

BurntSushi/toml (github.com/BurntSushi/toml)

v1.5.0

Compare Source

Mostly some small bugfixes, with a few small new features:

  • Add Position.Col, to mark the column an error occurred (#​410)

  • Print more detailed errors in the tomlv CLI.

  • Ensure ParseError.Message is always set (#​411)

  • Allow custom string types as map keys (#​414)

  • Mark meta keys as decoded when using Unmarshaler interface (#​426)

  • Fix encoding when nested inline table ends with map (#​438)

  • Fix encoding of several layers of embedded structs (#​430)

  • Fix ErrorWithPosition panic when there is no newline in the TOML document (#​433)

charmbracelet/bubbletea (github.com/charmbracelet/bubbletea)

v1.3.4

Compare Source

This release fixes an issue on Windows where the mouse is always enabled even if it wasn't requested. Now, using mouse options such as tea.WithAllMouseMotion() and commands such as tea.EnableMouseAllMotion and tea.DisableMouse turns the mouse on/off as expected.

Changelog

New Features
Bug fixes
Other work

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v1.3.3

Compare Source

This release restore the program options that were deprecated in the previous releases.

Changelog

Full Changelog: charmbracelet/bubbletea@v1.3.2...v1.3.3


The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v1.3.2

Compare Source

Fix canceling terminal input reads on Windows.

Changelog

Bug fixes

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v1.3.1

Compare Source

This release introduces some important bug fixes when it comes to cursor movements while rendering, and properly handle Windows AltGr key on non-English keyboards.

Changelog

Bug fixes
Other work

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

charmbracelet/lipgloss (github.com/charmbracelet/lipgloss)

v1.1.0

Compare Source

Tables, Improved

In this release, the inimitable @​andreynering and @​bashbunni majorly overhauled on the table sizing and content wrapping algorithms. Tables will now be much smarter on deciding the ideal width of each column, and contents now wraps by default inside cells.

// Table content wraps by default.
t := table.New().
    Headers(someHeaders...).
    Rows(someRows...).
    Width(80)

fmt.Println(t)
// Actually, let's not wrap the content.
t := table.New().
    Headers(someHeaders...).
    Rows(someRows...).
    Width(80).
    Wrap(false)

fmt.Println(t)

New Border Styles

Also, we added two new border styles that you can use to generate tables in Markdown and ASCII styles.

Markdown Tables

To render tables correctly for Markdown you'll want to use lipgloss.MarkdownBorder and disable the top and bottom borders.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.MarkdownBorder()).
    BorderTop(false).
    BorderBottom(false)

fmt.Println(t)
ASCII Tables

To render an ASCII-style table use lipgloss.ASCIIBorder.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.ASCIIBorder())

fmt.Println(t)

Thanks everyone

Special thanks to @​aymanbagabas, @​bashbunni, @​andreynering, and @​caarlos0 for or all the work on this release!


Changelog

New Features
Bug fixes
Other work

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

go-task/task (github.com/go-task/task/v3)

v3.42.1

Compare Source

  • Fixed a bug where some special variables caused a type error when used global
    variables (#​2106, #​2107 by @​pd93).

v3.42.0

Compare Source

Package API

Unlike our CLI tool,
Task's package API is not currently stable.
In an effort to ease the pain of breaking changes for our users, we will be
providing changelogs for our package API going forwards. The hope is that these
changes will provide a better long-term experience for our users and allow to
stabilize the API in the future. #​121 now tracks this piece of work.

golang/go (go)

v1.24.1

v1.24.0

v1.23.7


Configuration

📅 Schedule: Branch creation - "before 6am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor Author

renovate bot commented Feb 10, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 15 additional dependencies were updated

Details:

Package Change
github.com/ProtonMail/go-crypto v1.1.3 -> v1.1.5
github.com/alecthomas/chroma/v2 v2.14.0 -> v2.15.0
github.com/charmbracelet/bubbles v0.20.0 -> v0.20.1-0.20250320170029-54f28b650198
github.com/cloudflare/circl v1.3.7 -> v1.6.0
github.com/cyphar/filepath-securejoin v0.3.6 -> v0.4.1
github.com/dlclark/regexp2 v1.11.0 -> v1.11.4
github.com/go-git/go-billy/v5 v5.6.1 -> v5.6.2
github.com/go-git/go-git/v5 v5.13.1 -> v5.14.0
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da -> v0.0.0-20241129210726-2c02b8208cf8
github.com/google/go-cmp v0.6.0 -> v0.7.0
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a -> v0.16.0
github.com/pjbgf/sha1cd v0.3.0 -> v0.3.2
github.com/skeema/knownhosts v1.3.0 -> v1.3.1
github.com/spf13/pflag v1.0.5 -> v1.0.6
mvdan.cc/sh/v3 v3.10.0 -> v3.11.0

Copy link

ilo-nanpa bot commented Feb 10, 2025

it seems like you haven't added any nanpa changeset files to this PR.

if this pull request includes changes to code, make sure to add a changeset, by writing a file to .nanpa/<unique-name>.kdl:

minor type="added" "Introduce frobnication algorithm"

refer to the manpage for more information.

@renovate renovate bot changed the title fix(deps): update github.com/charmbracelet/huh/spinner digest to 2eba4f3 fix(deps): update github.com/charmbracelet/huh/spinner digest to 9ef0c49 Feb 11, 2025
@renovate renovate bot force-pushed the renovate/go-deps branch from fa6369b to be8a9ee Compare February 11, 2025 01:52
@renovate renovate bot changed the title fix(deps): update github.com/charmbracelet/huh/spinner digest to 9ef0c49 fix(deps): update go deps Feb 11, 2025
@renovate renovate bot force-pushed the renovate/go-deps branch 4 times, most recently from b87f1d7 to b11c102 Compare February 13, 2025 15:46
@renovate renovate bot force-pushed the renovate/go-deps branch 4 times, most recently from 22077a1 to f97c29d Compare March 5, 2025 15:09
@davidzhao
Copy link
Member

there's a Go version update. static check needs to be updated as well before merge

@renovate renovate bot force-pushed the renovate/go-deps branch 9 times, most recently from 0a4ddd9 to 203a4f5 Compare March 13, 2025 18:57
@renovate renovate bot force-pushed the renovate/go-deps branch 6 times, most recently from 64632c4 to 52a6975 Compare March 17, 2025 21:56
@renovate renovate bot force-pushed the renovate/go-deps branch 5 times, most recently from 30657e1 to 7a88971 Compare March 20, 2025 16:49
Generated by renovateBot
@renovate renovate bot force-pushed the renovate/go-deps branch from 7a88971 to 5bdb68f Compare March 20, 2025 22:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant